/* Main Stylesheet for CredVue Payment Solution */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css?family=Cabin:400,400i,500,500i,600,600i,700,700i&display=swap');
@import url('https://fonts.googleapis.com/css?family=Rubik:300,300i,400,400i,500,500i,700,700i,900,900i&display=swap');
@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Work+Sans:300,400,500,600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap');

/* Font Awesome */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css');

/* Base Styles */
:root {
  --primary-color: #0056b3;
  --secondary-color: #6c757d;
  --accent-color: #17a2b8;
  --light-color: #f8f9fa;
  --dark-color: #343a40;
  --success-color: #28a745;
  --warning-color: #ffc107;
  --danger-color: #dc3545;
  --info-color: #17a2b8;
}

body {
  font-family: 'Rubik', sans-serif;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cabin', sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
}

.font-cabin {
  font-family: 'Cabin', sans-serif;
}

.font-rubik {
  font-family: 'Rubik', sans-serif;
}

.font-poppins {
  font-family: 'Poppins', sans-serif;
}

.font-work-sans {
  font-family: 'Work Sans', sans-serif;
}

.font-roboto {
  font-family: 'Roboto', sans-serif;
}

/* Font Weights */
.fw-300 { font-weight: 300; }
.fw-400 { font-weight: 400; }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-900 { font-weight: 900; }

/* Font Sizes */
.fz-12 { font-size: 12px; }
.fz-14 { font-size: 14px; }
.fz-16 { font-size: 16px; }
.fz-18 { font-size: 18px; }
.fz-20 { font-size: 20px; }
.fz-24 { font-size: 24px; }
.fz-28 { font-size: 28px; }
.fz-32 { font-size: 32px; }
.fz-36 { font-size: 36px; }
.fz-40 { font-size: 40px; }
.fz-48 { font-size: 48px; }
.fz-56 { font-size: 56px; }
.fz-64 { font-size: 64px; }

/* Line Heights */
.lh-1 { line-height: 1; }
.lh-1-2 { line-height: 1.2; }
.lh-1-4 { line-height: 1.4; }
.lh-1-6 { line-height: 1.6; }
.lh-1-8 { line-height: 1.8; }
.lh-2 { line-height: 2; }

/* Buttons */
.btn {
  border-radius: 4px;
  padding: 0.5rem 1.5rem;
  transition: all 0.3s ease;
  font-weight: 500;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: #004494;
  border-color: #004494;
}

.btn-light {
  background-color: #fff;
  color: var(--primary-color);
}

.btn-light:hover {
  background-color: #f8f9fa;
  color: #004494;
}

.btn-signup {
  background-color: #fff;
  color: var(--primary-color);
  border-radius: 30px;
  padding: 0.5rem 1.8rem;
  font-weight: 500;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.btn-signup:hover {
  background-color: var(--primary-color);
  color: #fff;
}

/* Navigation */
.navbar-style-1 {
  padding: 1.5rem 2rem;
  transition: all 0.3s ease;
  z-index: 1000;
}

.navbar-style-1.scrolled {
  background-color: #fff !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 0.8rem 2rem;
}

.navbar-style-1.scrolled .nav-link,
.navbar-style-1.scrolled .navbar-brand {
  color: #333 !important;
}

.navbar-nav-style-1 .nav-item {
  margin: 0 0.5rem;
}

.navbar-nav-style-1 .nav-link {
  color: #fff;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

.navbar-nav-style-1 .nav-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

.navbar-nav-style-1 .dropdown-menu {
  border: none;
  border-radius: 4px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

.navbar-nav-style-1 .dropdown-item {
  padding: 0.5rem 1.5rem;
  font-weight: 400;
  transition: all 0.3s ease;
}

.navbar-nav-style-1 .dropdown-item:hover {
  background-color: #f8f9fa;
  color: var(--primary-color);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #0056b3 0%, #00a0e9 100%);
  color: #fff;
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../media/banners/pattern-bg.png');
  background-size: cover;
  opacity: 0.1;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-image img {
  max-width: 100%;
  height: auto;
}

/* Features Section */
.features-section {
  padding: 80px 0;
}

.feature-card {
  padding: 2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

/* Testimonials */
.testimonial-section {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.testimonial-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin: 1rem 0;
}

.testimonial-card img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
}

/* Contact Form */
.contact-section {
  padding: 80px 0;
}

.contact-form {
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-info {
  background-color: var(--primary-color);
  color: #fff;
  padding: 2rem;
  border-radius: 8px;
  height: 100%;
}

.contact-info i {
  font-size: 1.5rem;
  margin-right: 1rem;
}

/* Footer */
.footer-section {
  background-color: var(--dark-color);
  color: #fff;
  padding: 80px 0 30px;
}

.footer-section h5 {
  font-weight: 600;
  margin-bottom: 1.5rem;
}

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

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: #fff;
  text-decoration: none;
}

.social-icons 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);
  transition: all 0.3s ease;
  margin-right: 0.5rem;
}

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

/* Responsive Styles */
@media (max-width: 991.98px) {
  .navbar-style-1 {
    background-color: #fff !important;
    padding: 0.8rem 1rem;
  }
  
  .navbar-style-1 .nav-link,
  .navbar-style-1 .navbar-brand {
    color: #333 !important;
  }
  
  .hero-section {
    padding: 120px 0 80px;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 767.98px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .hero-image {
    margin-top: 2rem;
  }
  
  .feature-card {
    margin-bottom: 1.5rem;
  }
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

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

.animate-slideInUp {
  animation: slideInUp 1s ease-in-out;
}