/* Base Styles */
:root {
    --primary-color: #6a11cb;
    --secondary-color: #2575fc;
    --dark-color: #181a2a;
    --light-color: #f8f9fa;
    --text-color: #e0e0e0;
    --heading-color: #ffffff;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--dark-color) 0%, #23244d 100%);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--heading-color);
    font-weight: 600;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.section-padding {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

/* Navigation */
.navbar {
    background: rgba(24, 26, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    transition: all 0.3s ease;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    color: var(--heading-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.navbar-brand:hover {
    color: var(--secondary-color);
}

.nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    padding: 8px 15px !important;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(120deg, #23244d 0%, #3a1c71 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    display: flex;
    align-items: center;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--heading-color);
}

.hero p {
    color: var(--text-color);
    font-size: 1.2rem;
}

.hero-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(138,43,226,0.2) 0%, transparent 70%);
    z-index: 0;
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-2px);
    color: white;
}

.btn-outline {
    border: 2px solid var(--text-color);
    color: var(--text-color);
}

.btn-outline:hover {
    background: var(--text-color);
    color: var(--dark-color);
}

/* About Section */
.about-content {
    padding-right: 30px;
}

.section-subtitle {
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-color);
}

.about-features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(35, 36, 77, 0.7);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    background: rgba(35, 36, 77, 0.9);
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: white;
    font-size: 1.2rem;
}

.feature-content h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--heading-color);
}

.feature-content p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-color);
}

.about-image-wrapper {
    position: relative;
    padding: 20px;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 40px;
    right: 0;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    display: block;
    margin-bottom: 5px;
}

.experience-badge .text {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(35, 36, 77, 0.7);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(35, 36, 77, 0.9);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.stat-item p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-color);
}

/* Services Section Styles */
.section-header {
    margin-bottom: 60px;
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-color);
    font-size: 1.1rem;
}

.service-card {
    background: rgba(35, 36, 77, 0.7);
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-card .icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
    font-size: 2rem;
}

.service-card h3 {
    color: var(--heading-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-color);
    margin-bottom: 0;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.service-features li {
    color: var(--text-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.service-features li i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 0.8rem;
}

.service-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.service-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--primary-color);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Work Section */
.work-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

.work-card img {
    transition: all 0.5s ease;
}

.work-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(35, 36, 77, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.work-card:hover .work-overlay {
    opacity: 1;
}

.work-card:hover img {
    transform: scale(1.1);
}

/* Contact Section */
.contact-card {
    background: rgba(35, 36, 77, 0.7);
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0.05;
    z-index: 0;
}

.form-group {
    position: relative;
    margin-bottom: 1.8rem;
    z-index: 1;
}

.input-group {
    position: relative;
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.input-group:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.input-group-text {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
    padding: 0 25px;
    font-size: 1.2rem;
    min-width: 60px;
    justify-content: center;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    padding: 18px 25px;
    font-size: 1rem;
    height: auto;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary-color);
    color: var(--text-color);
    box-shadow: 0 0 0 4px rgba(37, 117, 252, 0.1);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.95rem;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Submit Button Styles */
.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 117, 252, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-primary i {
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(5px);
}

/* Success Message Styles */
.alert-success {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.2);
    color: #28a745;
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    margin-top: 2rem;
    animation: slideUp 0.5s ease-out;
}

.success-content {
    display: flex;
    align-items: center;
}

.success-content i {
    font-size: 2.5rem;
    margin-right: 20px;
    color: #28a745;
}

.success-text h4 {
    color: #28a745;
    margin-bottom: 5px;
    font-size: 1.3rem;
    font-weight: 600;
}

.success-text p {
    margin: 0;
    color: rgba(40, 167, 69, 0.9);
    font-size: 1rem;
}

/* Form Validation Styles */
.form-control.is-invalid {
    border-color: #dc3545;
    background: rgba(220, 53, 69, 0.05);
}

.form-control.is-valid {
    border-color: #28a745;
    background: rgba(40, 167, 69, 0.05);
}

.invalid-feedback {
    color: #ff6b6b;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    padding-left: 25px;
    position: relative;
}

.invalid-feedback::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ff6b6b;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Footer */
.footer {
    background: rgba(24, 26, 42, 0.95);
    padding: 80px 0 30px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    color: var(--heading-color);
    margin-bottom: 20px;
}

.social-links a {
    color: var(--text-color);
    margin-right: 15px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--secondary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 30px 0;
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .section-padding {
        padding: 70px 0;
    }
    
    .about-content {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .experience-badge {
        bottom: 20px;
        right: 20px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-card .icon-box {
        width: 60px;
        height: 60px;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 767px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-item {
        padding: 15px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
        display: inline-block;
    }
    
    .contact-card {
        padding: 30px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .service-card {
        margin-bottom: 30px;
    }
    
    .form-control {
        padding: 15px 20px;
    }
    
    .input-group-text {
        padding: 0 20px;
    }
    
    .btn-primary {
        padding: 15px 25px;
    }
    
    .success-content i {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 20px;
    }
}

/* Contact Info Card Styles */
.contact-info-card {
    background: rgba(35, 36, 77, 0.7);
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0.05;
    z-index: 0;
}

.contact-info-item {
    display: flex;
    align-items: center;
    padding: 20px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-2px);
}

.contact-info-item i {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-right: 20px;
    transition: all 0.3s ease;
}

.contact-info-item:hover i {
    transform: scale(1.1);
}

.contact-info-content h4 {
    color: var(--heading-color);
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-info-content p {
    color: var(--text-color);
    margin: 0;
    font-size: 1rem;
    opacity: 0.9;
}

@media (max-width: 767px) {
    .contact-info-card {
        padding: 20px;
    }
    
    .contact-info-item {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .contact-info-item i {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .contact-info-content h4 {
        font-size: 1.1rem;
    }
    
    .contact-info-content p {
        font-size: 0.95rem;
    }
}

/* Privacy and Terms Pages Styles */
.content-card {
    background: rgba(35, 36, 77, 0.7);
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0.05;
    z-index: 0;
}

.content-card h1 {
    color: var(--heading-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.last-updated {
    color: var(--text-color);
    opacity: 0.7;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.policy-section {
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.policy-section h2 {
    color: var(--heading-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.policy-section p {
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.policy-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1rem;
}

.policy-section ul li {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.policy-section ul li::before {
    content: '•';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Close Button Styles */
.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 117, 252, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-primary i {
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: rotate(90deg);
}

@media (max-width: 767px) {
    .content-card {
        padding: 30px;
        margin-top: 60px;
    }
    
    .content-card h1 {
        font-size: 2rem;
    }
    
    .policy-section h2 {
        font-size: 1.3rem;
    }
    
    .policy-section ul li {
        font-size: 0.95rem;
    }
} 