/* Custom Variables */
:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --text-color: #1f2937;
    --light-bg: #f3f4f6;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    --gradient-secondary: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    --gradient-dark: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    --primary-yellow: #FFD700;
    --secondary-yellow: #FFC107;
    --dark-yellow: #FFA000;
    --black: #1A1A1A;
    --light-black: #2D2D2D;
}

/* Global Styles */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* Hero Section */
.hero-section {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1607860108855-64acf2078ed9?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') center/cover;
    opacity: 0.2;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

/* Service Cards */
.service-card {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.service-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.service-card .card-body {
    padding: 1.5rem;
}

/* Feature Boxes */
.feature-box {
    padding: 2rem;
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box i {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-yellow) !important;
    color: var(--black) !important;
    border: none !important;
    transition: all 0.3s ease !important;
}

.btn-primary:hover {
    background-color: var(--dark-yellow) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.btn-secondary {
    background-color: var(--black) !important;
    color: var(--primary-yellow) !important;
    border: 2px solid var(--primary-yellow) !important;
    transition: all 0.3s ease !important;
}

.btn-secondary:hover {
    background-color: var(--primary-yellow) !important;
    color: var(--black) !important;
    transform: translateY(-2px);
}

/* Testimonials */
.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto;
}

/* Process Section */
.process-step {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.process-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
}

/* Contact Section */
.contact-info {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 2rem;
    border-radius: 1rem;
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* Footer */
.footer {
    background-color: var(--black) !important;
    color: var(--white) !important;
    padding: 4rem 0 2rem !important;
    position: relative !important;
    overflow: hidden !important;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--secondary-yellow), var(--dark-yellow));
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-yellow);
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
    color: var(--secondary-yellow);
}

.footer-heading {
    color: var(--primary-yellow);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

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

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--white) !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '→';
    color: var(--primary-yellow);
    margin-right: 8px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-yellow) !important;
    padding-left: 10px;
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

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

.footer-social a:hover {
    background-color: var(--primary-yellow);
    color: var(--black);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-newsletter {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.footer-newsletter .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 0.75rem 1rem;
}

.footer-newsletter .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-yellow);
}

.footer-newsletter .btn {
    background-color: var(--primary-yellow);
    color: var(--black);
    padding: 0.75rem 1.5rem;
    border: none;
    transition: all 0.3s ease;
}

.footer-newsletter .btn:hover {
    background-color: var(--secondary-yellow);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    footer {
        text-align: center;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links a::before {
        display: none;
    }
    
    .footer-links a:hover {
        padding-left: 0;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease-out;
}

/* Carousel Customization */
.carousel-item {
    height: 80vh;
    background-size: cover;
    background-position: center;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-radius: 1rem;
    backdrop-filter: blur(5px);
}

/* Team Section */
.team-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 5px solid var(--light-bg);
}

/* FAQ Section */
.accordion-button:not(.collapsed) {
    background: var(--gradient-primary);
    color: var(--white);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(37, 99, 235, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .carousel-item {
        height: 60vh;
    }
    
    .hero-section {
        min-height: 50vh;
    }
    
    .process-step {
        margin-bottom: 1rem;
    }
}

/* Custom Card Styles */
.card {
    border: none !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1) !important;
}

/* Custom Navbar Styles */
.navbar {
    background-color: var(--white) !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
}

.navbar-brand {
    color: var(--black) !important;
    font-weight: bold !important;
}

.nav-link {
    color: var(--black) !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    position: relative;
}

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

/* Custom Form Styles */
.form-control:focus {
    border-color: var(--primary-yellow) !important;
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25) !important;
}

/* Custom Alert Styles */
.alert-success {
    background-color: var(--primary-yellow) !important;
    color: var(--black) !important;
    border: none !important;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-out;
}

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

.animate-slide-in {
    animation: slideIn 0.5s ease-out;
}

/* Custom Table Styles */
.table {
    border-color: var(--primary-yellow) !important;
}

.table thead th {
    background-color: var(--black) !important;
    color: var(--primary-yellow) !important;
    border-color: var(--primary-yellow) !important;
}

/* Custom Badge Styles */
.badge-primary {
    background-color: var(--primary-yellow) !important;
    color: var(--black) !important;
}

/* Custom Pagination Styles */
.page-item.active .page-link {
    background-color: var(--primary-yellow) !important;
    border-color: var(--primary-yellow) !important;
    color: var(--black) !important;
}

.page-link {
    color: var(--black) !important;
}

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

/* Custom Modal Styles */
.modal-header {
    background-color: var(--black) !important;
    color: var(--primary-yellow) !important;
}

.modal-footer {
    border-top: 1px solid var(--primary-yellow) !important;
}

/* Custom Footer Styles */
footer {
    background-color: var(--black) !important;
    color: var(--white) !important;
}

footer a {
    color: var(--primary-yellow) !important;
    transition: all 0.3s ease !important;
}

footer a:hover {
    color: var(--secondary-yellow) !important;
    text-decoration: none !important;
}

/* Custom Section Headers */
.section-header {
    color: var(--black) !important;
    border-bottom: 3px solid var(--primary-yellow) !important;
    padding-bottom: 10px !important;
    margin-bottom: 30px !important;
}

/* Custom List Styles */
.list-group-item {
    border-color: var(--primary-yellow) !important;
    transition: all 0.3s ease !important;
}

.list-group-item:hover {
    background-color: rgba(255, 215, 0, 0.1) !important;
}

/* Custom Progress Bar */
.progress-bar {
    background-color: var(--primary-yellow) !important;
}

/* Custom Tooltip */
.tooltip-inner {
    background-color: var(--black) !important;
    color: var(--primary-yellow) !important;
}

/* Custom Dropdown */
.dropdown-menu {
    border: 1px solid var(--primary-yellow) !important;
}

.dropdown-item:hover {
    background-color: var(--primary-yellow) !important;
    color: var(--black) !important;
}

/* Custom Breadcrumb */
.breadcrumb-item.active {
    color: var(--primary-yellow) !important;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--black) !important;
}

/* Custom Tabs */
.nav-tabs .nav-link.active {
    color: var(--black) !important;
    background-color: var(--primary-yellow) !important;
    border-color: var(--primary-yellow) !important;
}

.nav-tabs .nav-link {
    color: var(--black) !important;
}

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

/* Remove underlines from all links */
a {
    text-decoration: none !important;
}

/* Navigation Links */
.nav-link {
    color: var(--black) !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    position: relative;
}

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

/* Auth Links (Login/Register) */
.text-gray-600 {
    text-decoration: none !important;
}

.text-gray-600:hover {
    color: var(--primary-yellow) !important;
}

/* Footer Links */
.footer-links a {
    text-decoration: none !important;
}

/* Quick Links */
.quick-links a {
    text-decoration: none !important;
}

/* Dropdown Links */
.dropdown-item {
    text-decoration: none !important;
}

/* Breadcrumb Links */
.breadcrumb-item a {
    text-decoration: none !important;
}

/* Card Links */
.card-link {
    text-decoration: none !important;
}

/* Button Links */
.btn-link {
    text-decoration: none !important;
}

/* Social Media Links */
.social-links a {
    text-decoration: none !important;
}

/* Menu Links */
.menu-link {
    text-decoration: none !important;
}

/* Update the existing styles */
.navbar-nav .nav-link {
    text-decoration: none !important;
}

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

/* Auth pages specific styles */
.auth-links a {
    text-decoration: none !important;
    color: var(--black) !important;
    transition: all 0.3s ease !important;
}

.auth-links a:hover {
    color: var(--primary-yellow) !important;
}

/* Remove underline from forgot password link */
.forgot-password-link {
    text-decoration: none !important;
}

/* Remove underline from remember me text */
.remember-me-text {
    text-decoration: none !important;
}

/* Remove underline from register link */
.register-link {
    text-decoration: none !important;
}

/* Remove underline from login link */
.login-link {
    text-decoration: none !important;
} 