/* Custom Styles for AIO Review */

/* Hero Section */
.hero-section {
    background: url('../images/background2.jpg') no-repeat center center;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Service Cards */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3rem;
    color: #1E4976;
    margin-bottom: 1rem;
}

.service-card .card-title {
    color: #0F3542;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-card .card-text {
    color: #326DAC;
    line-height: 1.6;
}

/* Contact Section */
.contact-info p {
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.contact-info i {
    color: #ffffff;
    margin-right: 0.5rem;
}

.contact-info a {
    color: #ffffff;
    text-decoration: none;
}

.contact-info a:hover {
    color: #ffffff;
}

/* Navigation */
.navbar {
    background: #1E4976;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.navbar-brand i {
    color: #FFFFFF;
    margin-right: 0.5rem;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #1E4976 0%, #326DAC 100%);
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(62, 159, 179, 0.4);
}

.btn-outline-primary {
    border-color: #1E4976;
    color: #1E4976;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: #1E4976;
    border-color: #1E4976;
    transform: translateY(-2px);
}

/* Footer */
footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #47D1BB !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
        padding-top: 100px;
        padding-bottom: 3rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .service-icon {
        font-size: 2.5rem;
    }
    
    /* Mobile hero section improvements */
    .hero-section .text-white-50 {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    /* Mobile pricing box improvements */
    .pricing-box {
        padding: 25px 30px;
        margin-bottom: 3rem !important;
    }
    
    .row.mt-5.pt-4 .col-lg-4 {
        margin-bottom: 2rem;
    }
    
    .pricing-box .plan {
        font-size: 28px;
    }
    
    .f-20 {
        font-size: 18px;
    }
    
    .f-18 {
        font-size: 16px;
    }
    
    .f-17 {
        font-size: 15px;
    }
    
    .section {
        padding: 80px 0;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Form Styling */
.form-control:focus {
    border-color: #47D1BB;
    box-shadow: 0 0 0 0.2rem rgba(71, 209, 187, 0.25);
}

/* Modal Styling */
.modal-header {
    background: linear-gradient(135deg, #1E4976 0%, #326DAC 100%);
    color: white;
}

.modal-header .btn-close {
    filter: invert(1);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Success Message */
.success-message {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

/* Alert Styling */
.alert {
    border: none;
    border-radius: 0.5rem;
}

.alert-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.alert-danger {
    background: linear-gradient(135deg, #dc3545 0%, #fd7e14 100%);
    color: white;
}

/* Pricing Cards */
.pricing-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 1rem;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.premium-card {
    transform: scale(1.08);
    border: 2px solid #47D1BB;
    box-shadow: 0 12px 35px rgba(71, 209, 187, 0.25);
    position: relative;
    z-index: 3;
    margin-top: -1rem;
    margin-bottom: -1rem;
}

.premium-card:hover {
    transform: scale(1.08) translateY(-5px);
    box-shadow: 0 16px 45px rgba(71, 209, 187, 0.35);
}

.premium-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}

.pricing-features ul li {
    padding: 0.25rem 0;
    font-size: 0.9rem;
}

.pricing-features .text-success {
    color: #47D1BB !important;
}

.pricing-card .card-title {
    color: #1E4976;
    font-weight: 700;
    font-size: 1.5rem;
}

.pricing-card .btn {
    border-radius: 2rem;
    padding: 0.5rem 2rem;
    font-weight: 600;
}

/* Responsive pricing adjustments */
@media (max-width: 768px) {
    .premium-card {
        transform: scale(1.02);
        margin-top: 0;
        margin-bottom: 0;
    }
    
    .premium-card:hover {
        transform: scale(1.02) translateY(-5px);
    }
    
    .pricing-card {
        margin-bottom: 1rem;
    }
}

/* Bootdey Pricing Styles */
body{margin-top:20px;}
/* Pricing row styling for equal heights */
.row.mt-5.pt-4 {
    display: flex;
    align-items: stretch;
}

.row.mt-5.pt-4 .col-lg-4 {
    display: flex;
}

/* Pricing box equal height styling */
.pricing-box {
  -webkit-box-shadow: 0px 5px 30px -10px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 5px 30px -10px rgba(0, 0, 0, 0.1);
  padding: 35px 50px;
  border-radius: 20px;
  position: relative;
  background: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid #e9ecef;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-box:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 40px -15px rgba(0, 0, 0, 0.2);
    border-color: #47D1BB;
}

.pricing-box .plan {
  font-size: 34px;
  font-weight: bold;
}

.pricing-badge {
  position: absolute;
  top: 0;
  z-index: 999;
  right: 0;
  width: 100%;
  display: block;
  font-size: 15px;
  padding: 0;
  overflow: hidden;
  height: 100px;
}

.pricing-badge .badge {
  float: right;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  right: -67px;
  top: 17px;
  position: relative;
  text-align: center;
  width: 200px;
  font-size: 13px;
  margin: 0;
  padding: 7px 10px;
  font-weight: 500;
    color: #FFFFFF;
    background: #3D9FB3;
}

.mb-2, .my-2 {
    margin-bottom: .5rem!important;
}

p {
    line-height: 1.7;
}

.f-17 {
    font-size: 17px;
}

.f-18 {
    font-size: 18px;
}

.f-20 {
    font-size: 20px;
}

.title-heading {
    font-weight: 700;
    color: #0F3542;
}

.btn-rounded {
    border-radius: 50px;
    padding: 10px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-rounded:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(71, 209, 187, 0.4);
}

/* Section styling */
.section {
    padding: 120px 0;
    background: #FFFFFF;
}

/* Material Design Icons styling */
.mdi {
    color: #47D1BB;
}

.mdi.text-primary {
    color: #47D1BB !important;
}

/* Pricing plan styling */
.pricing-plan h4 {
    font-weight: 700;
}

.pricing-plan .plan {
    color: #1E4976 !important;
}

/* Feature list styling */
.pricing-box p.mb-2 {
    margin-bottom: 0.5rem !important;
    font-size: 14px;
}

.pricing-box p.mb-2 b {
    font-weight: 600;
    color: #0F3542;
}

/* Responsive adjustments for new pricing */
@media (max-width: 768px) {
    .pricing-box {
        padding: 25px 30px;
        margin-bottom: 30px;
    }
    
    .pricing-box .plan {
        font-size: 28px;
    }
    
    .f-20 {
        font-size: 18px;
    }
    
    .f-18 {
        font-size: 16px;
    }
    
    .f-17 {
        font-size: 15px;
    }
    
    .section {
        padding: 80px 0;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 1000;
    display: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    padding: 0;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(71, 209, 187, 0.4);
    transition: all 0.3s ease;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(71, 209, 187, 0.6);
}

.back-to-top.show {
    display: flex !important;
}

/* reCAPTCHA Badge */
.grecaptcha-badge {
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 9999 !important;
} 

.headerbr {
    display: none;
}

@media (max-width: 576px) {
    .headerbr {
        display: inline;
    }
}