/* Custom Styles for ProfitRiseNet */

/* Navigation Styles */
.navbar-brand {
    font-weight: bold;
    font-size: 24px;
}

.navbar-brand i {
    color: #f39c12;
    margin-right: 8px;
}

.navbar-default {
    background-color: rgba(255, 255, 255, 0.95);
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-default .navbar-nav > li > a {
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li.active > a {
    color: #f39c12;
    background-color: transparent;
}

/* Page Header Styles */
.page-header {
    position: relative;
    background-attachment: fixed;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Service Section Styles */
.service-section {
    position: relative;
}

.service-section:nth-child(even) {
    background-color: #f8f9fa;
}

.service-content h2 {
    color: #2c3e50;
    margin-bottom: 30px;
}

.service-content h2 i {
    color: #f39c12;
    margin-right: 15px;
}

.service-stats {
    margin-top: 40px;
}

.stat-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.stat-item h3 {
    color: #f39c12;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Contact Block Styles */
.contact-block {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.contact-icon i {
    margin-bottom: 20px;
}

.contact-details p {
    margin-bottom: 8px;
    line-height: 1.6;
}

.contact-actions .btn {
    border-radius: 25px;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-actions .btn:hover {
    transform: scale(1.05);
}

/* Feature Box Styles */
.feature-box {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.feature-box h5 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.feature-box h5 i {
    color: #f39c12;
    margin-right: 10px;
}

/* Footer Styles */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f39c12;
}

.social-icons {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.social-icons li {
    display: inline-block;
    margin-right: 10px;
}

.social-icons a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: #f39c12;
    color: white;
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #e67e22;
    transform: scale(1.1);
}

/* Policy Content Styles */
.policy-text h2 {
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f39c12;
}

.policy-text h3 {
    color: #34495e;
    margin-top: 30px;
    margin-bottom: 15px;
}

.policy-text p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: #555;
}

.policy-text ul, .policy-text ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.policy-text li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* CTA Section Styles */
.cta-section {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.cta-section .btn {
    border-radius: 30px;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-section .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Team Member Styles */
.team-member {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.team-member h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.team-member h4 i {
    color: #f39c12;
    margin-right: 10px;
}

/* Achievement Styles */
.achievement-item {
    margin-bottom: 30px;
}

.achievement-item h4 {
    color: #f39c12;
    margin-bottom: 15px;
}

.achievement-item h4 i {
    margin-right: 10px;
}

/* Award Styles */
.award-item {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.award-item h5 {
    color: #f39c12;
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 36px;
    }
    
    .service-content h2 {
        font-size: 28px;
    }
    
    .stat-item h3 {
        font-size: 28px;
    }
    
    .contact-block {
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 28px;
    }
    
    .navbar-brand {
        font-size: 20px;
    }
    
    .service-content h2 {
        font-size: 24px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-in forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-in-left {
    opacity: 0;
    animation: slideInLeft 1s ease-out forwards;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

.slide-in-right {
    opacity: 0;
    animation: slideInRight 1s ease-out forwards;
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Custom Button Styles */
.btn-custom {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.4);
}

/* Form Styles */
.form-control {
    border-radius: 8px;
    border: 2px solid #e9ecef;
    padding: 12px 15px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: #f39c12;
    box-shadow: 0 0 0 0.2rem rgba(243, 156, 18, 0.25);
}

/* Map Placeholder Styles */
.map-placeholder {
    transition: all 0.3s ease;
}

.map-placeholder:hover {
    transform: scale(1.02);
}

/* Contact Hours Styles */
.contact-hours ul {
    list-style: none;
    padding: 0;
}

.contact-hours li {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}

.contact-hours li:last-child {
    border-bottom: none;
}

/* --- Modern Team Section Styles --- */
.team-section-modern {
  background: #f7f7f7;
  padding: 0 0 40px 0;
}
.team-left {
  background: #b94a5a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  text-align: center;
}
.team-icon-bg {
  width: 100%;
  padding: 60px 0;
}
.team-icon-bg .icon {
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  margin: 0 auto 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  border: 2px solid #fff;
}
.team-icon-bg h4 {
  margin-top: 20px;
  font-weight: bold;
  letter-spacing: 1px;
}
.team-right {
  background: #f7f7f7;
  padding: 40px 30px;
}
.team-member-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 18px 24px;
  margin-bottom: 18px;
  display: flex;
  align-items: flex-start;
}
.team-member-card h4 {
  font-size: 18px;
  margin-bottom: 6px;
  color: #b94a5a;
}
.team-member-card i {
  color: #f39c12;
  margin-right: 12px;
  font-size: 22px;
  margin-top: 4px;
}
.team-stats {
  padding-left: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.team-stats-title {
  font-weight: bold;
  margin-bottom: 10px;
  color: #34495e;
  font-size: 18px;
}
.stat-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 24px 32px;
  font-size: 28px;
  color: #f39c12;
  font-weight: bold;
  margin-bottom: 16px;
  text-align: center;
  min-width: 140px;
}
.highlight {
  color: #b94a5a;
  font-weight: bold;
}
@media (max-width: 991px) {
  .team-right { padding: 30px 10px; }
  .team-stats { padding-left: 0; margin-top: 30px; }
}
@media (max-width: 767px) {
  .team-left, .team-right { min-height: unset; }
  .team-section-modern .row { flex-direction: column; }
}

footer {
    background: #222;
    color: #f7f7f7;
}
footer h4, footer p, footer ul.footer-links li, footer ul.footer-links a {
    color: #f7f7f7;
}
footer ul.footer-links a:hover {
    color: #f39c12;
}
footer .footer-links {
    color: #f7f7f7;
}
footer .footer-links li {
    color: #f7f7f7;
}
footer .footer-links a {
    color: #f7f7f7;
    text-decoration: none;
    transition: color 0.3s;
}
footer .footer-links a:hover {
    color: #f39c12;
}
footer .container-fluid {
    background: transparent;
} 