/* Base Styles */
:root {
    --primary-color: #FF4500;  /* Red-Orange */
    --secondary-color: #00FF7F;  /* Green */
    --dark-bg: #1a1a1a;
    --card-bg: rgba(255, 255, 255, 0.1);
    --text-color: #ffffff;
    --dark-color: #000000;  /* Black */
    --light-color: #F8FAFC;
    --heading-color: #FFFFFF;
    --gradient-start: #FF4500;  /* Red-Orange */
    --gradient-end: #00FF7F;  /* Green */
    --card-border: rgba(255, 69, 0, 0.2);  /* Red-Orange border */
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--dark-bg), #2a2a2a);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--heading-color);
    font-weight: 600;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-padding {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

/* Navigation */
.navbar {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    transition: all 0.3s ease;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 69, 0, 0.2);
}

.navbar-brand {
    color: var(--primary-color) !important;
    font-weight: 700;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navbar-brand:hover {
    color: var(--secondary-color);
}

.nav-link {
    color: var(--text-color) !important;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(120deg, #000000 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(255, 69, 0, 0.15) 0%, transparent 70%);
    z-index: 0;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    color: var(--text-color);
    font-size: 1.3rem;
    opacity: 0.9;
}

.hero-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(0, 255, 127, 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;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 69, 0, 0.3);
}

.btn-outline {
    border: 2px solid var(--gradient-start);
    color: var(--text-color);
    padding: 15px 35px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    transition: all 0.3s ease;
    z-index: -1;
}

.btn-outline:hover {
    color: white;
}

.btn-outline:hover::before {
    width: 100%;
}

/* About Section */
.about-content {
    padding-right: 40px;
}

.section-subtitle {
    color: var(--primary-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 {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 69, 0, 0.2);
    border-radius: 25px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 0;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.2);
}

.feature-item:hover::before {
    opacity: 0.1;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 127, 0.2);
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.about-image-wrapper {
    position: relative;
    padding: 30px;
}

.about-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
}

.about-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.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: 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(255, 69, 0, 0.3);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.experience-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 255, 127, 0.4);
}

.experience-badge .years {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    display: block;
    margin-bottom: 5px;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.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(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 69, 0, 0.2);
    border-radius: 25px;
    padding: 40px 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(255, 69, 0, 0.2);
}

.service-card .icon-box {
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    border-radius: 20px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
    font-size: 2rem;
    box-shadow: 0 0 20px rgba(0, 255, 127, 0.2);
}

.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, .contact-info-card {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 69, 0, 0.2);
    border-radius: 30px;
    padding: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before, .contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 0;
}

.contact-card:hover, .contact-info-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(255, 69, 0, 0.2);
}

.contact-card:hover::before, .contact-info-card:hover::before {
    opacity: 0.1;
}

.form-group {
    position: relative;
    margin-bottom: 1.8rem;
    z-index: 1;
}

.input-group {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 69, 0, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.input-group:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.input-group-text {
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    border: none;
    color: white;
    padding: 0 25px;
    font-size: 1.2rem;
}

.form-control {
    background: transparent;
    border: none;
    color: var(--text-color);
    padding: 20px;
    font-size: 1rem;
}

.form-control:focus {
    background: rgba(15, 23, 42, 0.8);
    box-shadow: none;
}

.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: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(0, 255, 127, 0.1);
    border: 1px solid rgba(0, 255, 127, 0.2);
    color: var(--secondary-color);
    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: var(--secondary-color);
}

.success-text h4 {
    color: var(--secondary-color);
    margin-bottom: 5px;
    font-size: 1.3rem;
    font-weight: 600;
}

.success-text p {
    margin: 0;
    color: rgba(0, 255, 127, 0.9);
    font-size: 1rem;
}

/* Form Validation Styles */
.form-control.is-invalid {
    border-color: var(--primary-color);
    background: rgba(255, 69, 0, 0.05);
}

.form-control.is-valid {
    border-color: #28a745;
    background: rgba(40, 167, 69, 0.05);
}

.invalid-feedback {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    padding-left: 25px;
    position: relative;
}

.invalid-feedback::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Footer */
.footer {
    background: rgba(26, 26, 26, 0.95);
    padding: 1rem 0;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 69, 0, 0.2);
}

.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, 69, 0, 0.2);
    margin: 30px 0;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.feature-item, .service-card {
    animation: float 6s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-padding {
        padding: 70px 0;
    }
    
    .about-content {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .about-image {
        transform: none;
    }
    
    .experience-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 30px;
        display: inline-block;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .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.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-item {
        padding: 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-card, .contact-info-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;
    }
    
    .contact-info-item {
        padding: 15px;
    }
    
    .contact-info-item i {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .btn {
        padding: 12px 25px;
    }
}

/* Contact Info Card Styles */
.contact-info-card {
    background: var(--card-bg);
    border-radius: 30px;
    padding: 40px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 0;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    border-color: var(--gradient-start);
}

.contact-info-card:hover::before {
    opacity: 0.1;
}

.contact-info-item {
    display: flex;
    align-items: center;
    padding: 25px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-2px);
}

.contact-info-item i {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-right: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 127, 0.2);
}

.contact-info-item:hover i {
    transform: scale(1.1) rotate(5deg);
}

.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: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
    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(--secondary-color);
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.policy-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.policy-section:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.policy-section h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.policy-section p {
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.policy-section ul {
    list-style: none;
    padding-left: 0;
}

.policy-section ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.policy-section ul li::before {
    content: '•';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
}

/* Close Button Styles */
.btn-primary {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 69, 0, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-primary i {
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(5px);
}

@media (max-width: 767px) {
    .content-card {
        padding: 1.5rem;
    }
    
    .content-card h1 {
        font-size: 2rem;
    }
    
    .policy-section {
        padding: 1rem;
    }
    
    .policy-section h2 {
        font-size: 1.3rem;
    }
    
    .policy-section ul li {
        font-size: 0.95rem;
    }
} 