/* About Page Styles */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.about-hero {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.about-hero h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    animation: fadeInDown 0.8s ease;
}

.about-hero .subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    animation: fadeInUp 0.8s ease;
}

.about-section {
    margin-bottom: 4rem;
    animation: fadeIn 1s ease;
}

.about-section h2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.about-section h2 i {
    color: #007bff;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #007bff;
}

.feature-list li i {
    color: #007bff;
    font-size: 1.2rem;
}

.feature-list li:hover {
    transform: translateX(10px);
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.target-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.target-item i {
    color: #007bff;
    font-size: 1.5rem;
}

.target-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.value-card i {
    color: #007bff;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.value-card h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
    font-size: 1.5rem;
}

.value-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.value-card:hover i {
    transform: rotate(360deg);
}

.request-form {
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.request-form h1 {
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    font-size: 2em;
}

.request-form h2 {
    color: #444;
    margin: 30px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
    font-size: 1.4em;
}

.request-form p {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

.request-form small {
    display: block;
    color: #666;
    font-size: 0.85em;
    margin-top: 5px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input[type="password"] {
    font-family: monospace;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0,123,255,0.2);
}

.request-form button[type="submit"] {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.request-form button[type="submit"]:hover {
    background: #0056b3;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 2rem 1rem;
    }
    
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* Header Navigation Styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nav {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-link {
    color: #333;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: #f0f0f0;
    color: #007bff;
}

.btn {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #007bff;
    color: white;
}

.btn-primary:hover {
    background: #0056b3;
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    color: #1a237e;
    padding: 60px 20px 20px;
    margin-top: 50px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    text-align: left;
}

.footer-description {
    color: #1976d2;
    line-height: 1.6;
    margin-top: 15px;
}

.footer-section h3 {
    color: #1565c0;
    font-size: 1.2em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #90caf9;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #1976d2;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: #0d47a1;
    transform: translateX(5px);
}

.footer-contact p {
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    color: #495057;
    font-size: 1.8em;
    transition: all 0.3s;
}

.footer-social a:hover {
    color: #007bff;
    transform: translateY(-3px);
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #90caf9;
    color: #1565c0;
    background: rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* Pricing Page Styles */
.pricing-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.pricing-title {
    text-align: center;
    margin-bottom: 40px;
    color: #2c3e50;
    font-size: 2em;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.plan-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #FFE082;
}

.plan-card:hover {
    transform: translateY(-5px);
}

.plan-header {
    padding: 2rem;
    text-align: center;
    position: relative;
}

.plan-header.starter {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
}

.plan-header.pro {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
}

.plan-header.premium {
    background: linear-gradient(135deg, #9C27B0 0%, #7B1FA2 100%);
}

.plan-header.ultimate {
    background: linear-gradient(135deg, #8E2DE2 0%, #4A00E0 100%);
}

.plan-header h2 {
    color: white;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.plan-price {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    margin: 1rem 0;
}

.plan-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    margin-bottom: 0;
}

.plan-features {
    padding: 2rem;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.plan-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.plan-ideal {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.plan-ideal h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #333;
}

.plan-ideal p {
    color: #666;
    margin-bottom: 0;
}

.btn-primary {
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.popular {
    border: 2px solid var(--bs-primary) !important;
    transform: scale(1.05);
}

.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

@media (max-width: 768px) {
    .plans-grid {
        grid-template-columns: 1fr;
        padding: 15px;
    }
    
    .popular {
        transform: none;
    }
    
    .popular:hover {
        transform: translateY(-10px);
    }
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 20px;
    width: auto;
    vertical-align: middle;
}

:root {
    --primary: #0d6efd;
    --secondary: #198754;
}

body {
    font-family: 'Poppins', sans-serif;
}

.hero-area {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 0 180px;
    overflow: hidden;
}

.custom-shape-divider-bottom-1684883302 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-bottom-1684883302 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
}

.custom-shape-divider-bottom-1684883302 path {
    fill: #ffffff;
}

.hero-left h1 {
    font-weight: 700;
    line-height: 1.2;
    color: #2d3436;
}

.hero-text {
    font-size: 1.25rem;
    color: #636e72;
    max-width: 500px;
}

.hero-buttons .btn {
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 500;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.9rem;
    color: #636e72;
}

.hero-image-wrap {
    position: relative;
    perspective: 1000px;
}

.hero-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transform: rotateY(-10deg);
    transition: transform 0.5s ease;
}

.hero-image:hover {
    transform: rotateY(-5deg) translateY(-10px);
}

.floating-card {
    position: absolute;
    background: white;
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.floating-card i {
    color: var(--primary);
    font-size: 1.2rem;
}

.card1 {
    top: 20%;
    left: -10%;
    animation: float 3s infinite;
}

.card2 {
    bottom: 20%;
    right: -10%;
    animation: float 3s infinite reverse;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@media (max-width: 768px) {
    .hero-area {
        padding: 60px 0;
    }
    
    .hero-left {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .floating-card {
        display: none;
    }
}

/* Brand Gradient */
.brand-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.navbar .nav-link:hover {
    opacity: 0.8;
}

/* Login Page Styles */
.login-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    min-height: calc(100vh - 76px);
    margin-top: -1px;
}

.login-section .card {
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.login-section .input-group-text {
    background: transparent;
    border-right: none;
}

.login-section .form-control {
    border-left: none;
}

.login-section .form-control:focus {
    box-shadow: none;
    border-color: #ced4da;
}

.login-section .input-group:focus-within {
    box-shadow: 0 0 0 .25rem rgba(13,110,253,.25);
    border-radius: .375rem;
}

.login-section .btn-primary {
    padding: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Feature Cards Animation */
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.feature-icon {
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.2);
}

/* Stats Animation */
.stat-item {
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: scale(1.1);
}

/* Hero Section Enhancements */
.hero-image-wrap {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.floating-card {
    animation: cardFloat 4s ease-in-out infinite;
}

.floating-card.card1 {
    animation-delay: -2s;
}

@keyframes cardFloat {
    0% { transform: translate(0, 0); }
    50% { transform: translate(10px, -10px); }
    100% { transform: translate(0, 0); }
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, var(--bs-primary) 0%, #0056b3 100%);
    position: relative;
    overflow: hidden;
}

.hover-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.value-card {
    transition: all 0.3s ease;
    overflow: hidden;
}

.value-card:hover {
    transform: scale(1.05);
}

.value-card i {
    transition: transform 0.3s ease;
}

.value-card:hover i {
    transform: rotate(360deg);
}

/* Add gradient background for sections */
.about-section:nth-child(odd) {
    background-color: #f8f9fa;
}

/* Custom animations for icons */
.fas {
    transition: all 0.3s ease;
}

.card:hover .fas {
    color: var(--bs-primary);
    transform: scale(1.2);
}

/* Hero Section Styles */
.about-hero {
    background-color: var(--bs-primary);
    padding: 100px 0 150px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/Stock/uploads/pattern.png');
    background-size: cover;
    opacity: 0.1;
    animation: slide 20s linear infinite;
}

.hero-logo {
    height: 120px;
    animation: float 6s ease-in-out infinite;
}

.wave-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.wave-shape svg {
    position: relative;
    display: block;
    width: 100%;
    height: 70px;
}

@keyframes slide {
    from { background-position: 0 0; }
    to { background-position: -1000px 0; }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.hover-opacity {
    transition: opacity 0.3s ease;
}

.hover-opacity:hover {
    opacity: 0.8;
}

.hover-link {
    transition: all 0.3s ease;
}

.hover-link:hover {
    color: var(--bs-primary) !important;
    text-decoration: underline !important;
}

.fa-external-link-alt {
    opacity: 0.7;
}

/* Admin Register Styles */
.admin-register-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,123,255,0.07);
    padding: 2rem;
}

.admin-register-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, #007bff, #6610f2);
}

.admin-register-card h2 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

.admin-register-card .nav-links {
    margin-bottom: 2rem;
}

.admin-register-card .nav-links .btn {
    transition: all 0.3s ease;
    font-weight: 500;
}

.admin-register-card .nav-links .btn:hover {
    transform: translateY(-2px);
}

.admin-register-card .form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.admin-register-card .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.15);
    background: #ffffff;
}

.admin-register-card .form-label {
    font-weight: 500;
    color: #495057;
    margin-bottom: 0.5rem;
}

.admin-register-card .btn-primary {
    padding: 0.75rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: linear-gradient(to right, #007bff, #0056b3);
    border: none;
}

.admin-register-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,123,255,0.2);
}

.admin-register-card .alert {
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: none;
}

.admin-register-card .alert-success {
    background-color: rgba(25, 135, 84, 0.1);
    color: #198754;
}

.admin-register-card .alert-danger {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.admin-register-card h2 {
    color: #2c3e50;
    font-weight: 600;
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .admin-register-card {
        padding: 1.5rem;
    }
}