/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  color: #444444;
  background-color: #ffffff;
}

a {
  color: #f4c430; /* Saffron Accent */
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: #f7d462;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f8f9fa;
}

.section-title {
  text-align: center;
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1a2b48; /* Deep Blue */
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 60px;
  height: 4px;
  background: #f4c430; /* Saffron Accent */
  bottom: 0;
  left: calc(50% - 30px);
}

.section-title p {
  margin-bottom: 0;
  color: #6c757d;
}

/*--------------------------------------------------------------
# Navbar
--------------------------------------------------------------*/
.navbar {
  padding: 15px 0;
  background: #ffffff !important;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
}

.navbar-brand {
  font-weight: 700;
  font-size: 28px;
  color: #1a2b48;
  position: relative;
  display: flex;
  align-items: center;
}

.navbar-brand::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #f4c430;
  border-radius: 50%;
  margin-right: 8px;
}

.navbar-brand::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50%;
  height: 2px;
  background-color: #f4c430;
  transition: width 0.3s;
}

.navbar-brand:hover::after {
  width: 100%;
}

.navbar-nav {
  margin-left: auto;
}

.navbar-nav .nav-link {
  color: #1a2b48;
  font-weight: 600;
  padding: 10px 15px;
  margin: 0 5px;
  transition: 0.3s;
  font-size: 16px;
  border-radius: 4px;
  position: relative;
}

.navbar-nav .nav-link.active::after,
.navbar-nav .nav-link:hover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background-color: #f4c430;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: #f4c430;
  background-color: rgba(244, 196, 48, 0.1);
}

.navbar-toggler {
  border: none;
  padding: 10px;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.navbar-toggler-icon {
  width: 24px;
  height: 24px;
  background-image: none;
  position: relative;
  border-bottom: 2px solid #1a2b48;
  transition: all 300ms linear;
}

.navbar-toggler-icon:after,
.navbar-toggler-icon:before {
  width: 24px;
  position: absolute;
  height: 2px;
  background-color: #1a2b48;
  top: 0;
  left: 0;
  content: '';
  z-index: 2;
  transition: all 300ms linear;
}

.navbar-toggler-icon:after {
  top: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(45deg);
  top: 4px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(-45deg);
  top: 4px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  border-color: transparent;
}

@media (max-width: 991px) {
  .navbar-nav {
    padding: 15px 0;
  }

  .navbar-nav .nav-link {
    margin: 5px 0;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 90vh;
  background: url('../images/hero-bg.jpg') top center;
  background-size: cover;
  position: relative;
}

#hero:before {
  content: "";
  background: rgba(26, 43, 72, 0.7); /* Deep Blue Overlay */
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  position: relative;
  z-index: 2;
}

#hero h1 {
  margin: 0;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.85);
  margin: 20px 0 30px 0;
  font-size: 22px;
  font-family: 'Roboto', sans-serif;
}

.btn-primary {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background: #f4c430;
  border: 2px solid #f4c430;
}

.btn-primary:hover {
  background: transparent;
  color: #f4c430;
  border: 2px solid #f4c430;
}

/*--------------------------------------------------------------
# Why Us & Services
--------------------------------------------------------------*/
.icon-box, .service-card {
  padding: 40px 30px;
  background: #fff;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.07);
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  height: 100%;
  overflow: hidden;
}

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

.icon-box i, .service-card i {
  font-size: 48px;
  color: #f4c430;
  margin-bottom: 25px;
  line-height: 1;
}

.icon-box h4, .service-card h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 22px;
  color: #1a2b48;
}

.service-card {
  position: relative;
}

.service-card img {
  border-radius: 8px;
  margin-bottom: 20px;
  max-height: 220px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover img {
  transform: scale(1.05);
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #f4c430;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: right;
}

.service-card:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/*--------------------------------------------------------------
# Stats Counter
--------------------------------------------------------------*/
.stats-counter {
  background: #1a2b48; /* Deep Blue */
  padding: 60px 0;
  color: white;
}

.stats-counter .counter {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 700;
}

.stats-counter p {
  color: rgba(255, 255, 255, 0.8);
}

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

.testimonials .section-title h2 {
  color: #1a2b48;
  font-size: 36px;
  font-weight: 700;
  text-align: center;
}

.testimonials .section-title p {
  color: #6c757d;
  margin-bottom: 40px;
  text-align: center;
}

.testimonial-item {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
  padding: 40px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.testimonial-item::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 80px;
  font-family: Georgia, serif;
  color: rgba(244, 196, 48, 0.1);
  line-height: 1;
}

.testimonial-item .testimonial-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 5px solid #fff;
  margin: 0 auto 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.testimonial-item h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1a2b48;
  margin-bottom: 5px;
}

.testimonial-item p {
  font-size: 16px;
  color: #6c757d;
  font-style: italic;
  margin-bottom: 0;
  line-height: 1.8;
}

.testimonial-item .quote-icon-left,
.testimonial-item .quote-icon-right {
  color: rgba(244, 196, 48, 0.3);
  font-size: 18px;
  margin: 0 5px;
}

@media (max-width: 768px) {
  .testimonial-item {
    padding: 30px;
  }

  .testimonial-item .testimonial-img {
    width: 80px;
    height: 80px;
  }
}

/*--------------------------------------------------------------
# Contact & Forms
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.4);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 20px;
  background: #fff;
}

.contact .info-box i {
  font-size: 32px;
  color: #f4c430;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #fdeec9;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.4);
  padding: 30px;
  background: #fff;
  border-radius: 10px;
}

.contact .php-email-form .form-control {
  border-radius: 5px;
}

.contact .php-email-form button[type="submit"] {
  background: #f4c430;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
  font-weight: 600;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #f7d462;
}

/*--------------------------------------------------------------
# Comparison Table
--------------------------------------------------------------*/
.comparison-table thead th {
  background-color: #1a2b48;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
}

.comparison-table tbody th {
  font-weight: 600;
}

.comparison-table .bi-check-circle-fill {
  color: #28a745;
}

.comparison-table .bi-x-circle-fill {
  color: #dc3545;
}

.comparison-table .price-row h3 {
  color: #1a2b48;
  font-size: 32px;
  font-weight: 700;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background: #1a2b48;
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0;
  font-size: 14px;
}

.footer h3, .footer h4 {
  color: #fff;
  font-weight: 600;
}

.footer h3 {
  font-size: 28px;
}

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

.footer ul li {
  padding: 8px 0;
}

.footer ul li i {
  padding-right: 5px;
  color: #f4c430;
}

.footer ul li a {
  color: rgba(255, 255, 255, 0.7);
}

.footer ul li a:hover {
  color: #fff;
}

.footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background: #f4c430;
  color: #1a2b48;
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats-section .chart-title {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
  color: #1a2b48;
}

.stats-card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

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

.stats-icon {
  margin-bottom: 20px;
}

.stats-icon i {
  font-size: 48px;
  color: #f4c430;
}

.stats-card h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1a2b48;
}

.stats-card p {
  font-size: 16px;
  color: #6c757d;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Contact Form
--------------------------------------------------------------*/
.contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.contact-form label {
  font-weight: 600;
  margin-bottom: 8px;
  color: #1a2b48;
}

.contact-form .form-control {
  padding: 12px 15px;
  border-radius: 5px;
  border: 1px solid #ced4da;
  margin-bottom: 15px;
}

.contact-form .form-control:focus {
  border-color: #f4c430;
  box-shadow: 0 0 0 0.25rem rgba(244, 196, 48, 0.25);
}

.contact-form button[type="submit"] {
  background: #f4c430;
  border: 0;
  padding: 12px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
  font-weight: 600;
  margin-top: 15px;
}

.contact-form button[type="submit"]:hover {
  background: #f7d462;
}

.contact-form .loading {
  display: none;
  background: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 15px;
}

.contact-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #f4c430;
  border-top-color: #fff;
  animation: animate-loading 1s linear infinite;
}

.contact-form .error-message {
  display: none;
  color: #fff;
  background: #dc3545;
  text-align: center;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 15px;
}

.contact-form .sent-message {
  display: none;
  color: #fff;
  background: #28a745;
  text-align: center;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 15px;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Pricing Cards
--------------------------------------------------------------*/
.pricing-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  background: #f4c430;
  color: #1a2b48;
  transform: scale(1.05);
  z-index: 2;
}

.pricing-card.featured h3 {
  color: #1a2b48;
}

.pricing-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a2b48;
}

.pricing-card h4 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #1a2b48;
}

.pricing-card h4 sup {
  font-size: 20px;
  top: -15px;
}

.pricing-card h4 span {
  font-size: 16px;
  font-weight: 400;
  color: #6c757d;
}

.pricing-card.featured h4 span {
  color: #1a2b48;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.pricing-card ul li {
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.pricing-card.featured ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-card ul li i.bi-check-circle-fill {
  color: #28a745;
  margin-right: 8px;
}

.pricing-card ul li i.bi-x-circle-fill {
  color: #dc3545;
  margin-right: 8px;
}

.pricing-card .btn-buy {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  color: #fff;
  background-color: #1a2b48;
  font-weight: 600;
  transition: 0.3s;
  text-decoration: none;
}

.pricing-card.featured .btn-buy {
  background-color: #fff;
  color: #1a2b48;
}

.pricing-card .btn-buy:hover {
  background-color: #f4c430;
  color: #1a2b48;
}

.pricing-card.featured .btn-buy:hover {
  background-color: #1a2b48;
  color: #fff;
}

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

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

/*--------------------------------------------------------------
# Page Headers
--------------------------------------------------------------*/
.page-header {
  padding: 120px 0 60px;
  background: url('../images/hero-bg.jpg') center center;
  background-size: cover;
  position: relative;
  margin-bottom: 0;
}

.page-header:before {
  content: '';
  background: rgba(26, 43, 72, 0.7);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.page-header h1 {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  position: relative;
}

.page-header p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
  position: relative;
}

.contact-header:before {
  background: rgba(26, 43, 72, 0.8);
}

.stats-header:before {
  background: rgba(244, 196, 48, 0.3);
}

.comparison-header:before {
  background: linear-gradient(135deg, rgba(26, 43, 72, 0.8) 0%, rgba(244, 196, 48, 0.4) 100%);
}

.privacy-header:before {
  background: rgba(26, 43, 72, 0.75);
}

.terms-header:before {
  background: linear-gradient(135deg, rgba(26, 43, 72, 0.7) 0%, rgba(26, 43, 72, 0.9) 100%);
}

/*--------------------------------------------------------------
# Content Card
--------------------------------------------------------------*/
.content-card {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.content-card h2 {
  color: #1a2b48;
  font-size: 24px;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f0f0f0;
}

.content-card h2:first-child {
  margin-top: 0;
}

.content-card p {
  color: #6c757d;
  line-height: 1.8;
  margin-bottom: 20px;
}

.content-card ul {
  margin-bottom: 20px;
  color: #6c757d;
}

.content-card ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.content-card a {
  color: #f4c430;
  font-weight: 500;
  transition: 0.3s;
}

.content-card a:hover {
  color: #1a2b48;
  text-decoration: underline;
}
