:root {

  --primary-color: #003366;

  --secondary-color: #0066cc;

  --accent-color: #ff6b35;

  --text-dark: #1a1a1a;

  --text-light: #666666;

  --border-color: #dddddd;

  --bg-light: #f9f9f9;

  --success-color: #28a745;

  --error-color: #dc3545;

  --spacing: 16px;

  --transition: all 0.3s ease;

}

/* Reset and Base Styles */

* {

  margin: 0;

  padding: 0;

  box-sizing: border-box;

}

html {

  scroll-behavior: smooth;

}

body {

  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

  line-height: 1.6;

  color: var(--text-dark);

  background-color: #ffffff;

}

/* Typography */

h1,
h2,
h3,
h4,
h5,
h6 {

  font-weight: 600;

  margin: 1.5em 0 0.5em 0;

  line-height: 1.3;

}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin: 1em 0;
}

a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent-color);
}

/* Navigation Bar */

.navbar {

  background-color: white;

  border-bottom: 2px solid var(--border-color);

  position: sticky;

  top: 0;

  z-index: 1000;

  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);

}

.nav-container {

  /* max-width: 1200px; */

  margin: 0 auto;

  display: flex;

  justify-content: space-between;

  align-items: center;

  padding: 1rem 2rem;
  width: 100%;

}

.nav-logo {

  display: flex;

  flex-direction: column;

}

.logo-text {

  font-size: 1.8rem;

  font-weight: 700;

  color: var(--primary-color);

}

.logo-tagline {

  font-size: 0.75rem;

  color: var(--text-light);

  letter-spacing: 0.5px;

}

.nav-menu {

  display: flex;

  list-style: none;

  gap: 2rem;

}

.nav-link {

  color: var(--text-dark);

  font-weight: 500;

  font-size: 0.95rem;

  position: relative;

  transition: var(--transition);

}

.nav-link::after {

  content: '';

  position: absolute;

  bottom: -5px;

  left: 0;

  width: 0;

  height: 2px;

  background-color: var(--accent-color);

  transition: width 0.3s ease;

}

.nav-link:hover::after,

.nav-link.active::after {

  width: 100%;

}

/* Hero Sections */

.hero {

  background: linear-gradient(135deg, var(--primary-color) 0%, #004488 100%);

  color: white;

  padding: 4rem 2rem;

  text-align: center;

}

.hero-content h1 {

  font-size: 50px !important;

  margin: 1rem 0;

  color: white;

}

.hero-content p {

  font-size: 1.2rem;

  max-width: 600px;

  margin: 1.5rem auto;

  color: rgba(255, 255, 255, 0.9);

}

.hero-buttons {

  display: flex;

  gap: 1rem;

  justify-content: center;

  margin: 2rem 0;

  flex-wrap: wrap;

}

.hero-stats {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

  gap: 2rem;

  max-width: 1200px;

  margin: 3rem auto 0;

  padding: 0 2rem;

}

.stat-card {

  background: rgba(0, 52, 105, 0.63);

  padding: 1.5rem;

  border-radius: 8px;

  backdrop-filter: blur(10px);

}

.stat-number {

  font-size: 1.8rem;

  font-weight: 700;

  color: #fff;

}

.stat-label {

  font-size: 14px;
  font-weight: 700;

  color: var(--accent-color);

  margin-top: 0.5rem;

}

.page-hero {
  background:
    url('../assets/breadcrumb.jpg');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: white;
  padding: 3rem 2rem;
  text-align: center;
}

.page-hero h1 {

  color: #fff;

  font-size: 2.5rem;

  margin: 0.5rem 0;

}

.page-hero p {

  color: #fff;

  font-size: 1.1rem;

}

/* Buttons */

.btn {

  display: inline-block;

  padding: 0.75rem 1.5rem;

  border: none;

  border-radius: 4px;

  font-size: 1rem;

  font-weight: 600;

  cursor: pointer;

  transition: var(--transition);

  text-align: center;

  text-decoration: none;

}

/* .btn-primary {

    background-color: var(--secondary-color);

    color: white;

} */

.btn-primary:hover {

  background-color: #0052a3;

  transform: translateY(-2px);

  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);

}

.btn-secondary {

  background-color: transparent;

  color: var(--secondary-color);

  border: 2px solid var(--secondary-color);

}

.btn-secondary:hover {

  background-color: var(--secondary-color);

  color: white;
  border-color: var(--primary-color);

}

.btn-large {

  padding: 1rem 2rem;

  font-size: 1.1rem;

}

.btn-block {

  display: block;

  width: 100%;

}

.btn-small {

  padding: 0.5rem 1rem;

  font-size: 0.9rem;

}

/* Content Sections */

.content-section {

  padding: 3rem 2rem;

}

.content-section.bg-light {

  background-color: var(--bg-light);

}

/* Trust Signals */

.trust-signals {

  background-color: var(--bg-light);

  padding: 3rem 2rem;

}

.trust-signals h2 {
  text-align: center;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 2rem;

}

.signals-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

  gap: 2rem;

  max-width: 1200px;

  margin: 0 auto;

}

.signal-item {

  background: white;

  padding: 2rem;

  border-radius: 8px;

  text-align: center;

  border: 1px solid var(--border-color);

  transition: var(--transition);

}

.signal-item:hover {

  transform: translateY(-5px);

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);

}

.signal-icon {

  /* font-size: 3rem; */

  margin-bottom: 1rem;

}

.about-section {
  padding: 80px 0px;
}

.about-section img {
  border-radius: 20px;
}

.about-section h3 {
  font-weight: 700;
  color: var(--primary-color);
}

.signal-item h3 {

  color: var(--primary-color);
  font-weight: 700;
  margin: 1rem 0;
  font-size: 24px;

}

/* Features Grid */

.features-container {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

  gap: 2rem;

  margin: 2rem 0;

}

.feature-card {

  background: white;

  padding: 2rem;

  border-radius: 8px;

  border: 1px solid var(--border-color);

  transition: var(--transition);

}

.feature-card:hover {

  border-color: var(--secondary-color);

  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.15);

}

.feature-highlight {

  font-size: 1.4rem;

  font-weight: 700;

  color: var(--accent-color);

  margin: 0.5rem 0;

}

/* Process Timeline */

.process-timeline {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

  gap: 2rem;

  margin: 2rem 0;

  position: relative;

}


.process-step {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid black;
  /* border-left: 4px solid var(--secondary-color); */
  text-align: center;
  position: relative;

}

.step-number {

  display: inline-flex;

  width: 50px;

  height: 50px;

  background-color: var(--secondary-color);

  color: rgb(0, 0, 0);

  border-radius: 50%;

  align-items: center;

  justify-content: center;

  font-weight: 700;

  font-size: 1.5rem;

  margin-bottom: 1rem;

}

/* Testimonials */

.testimonials-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

  gap: 2rem;

  margin: 2rem 0;

}

.testimonial-card {

  background: var(--primary-color);

  padding: 2rem;

  border-radius: 8px;

  border: 1px solid var(--border-color);

  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);

}

.rating {

  color: #ffc107;

  font-size: 1rem;

  margin-bottom: 1rem;

}

.testimonial-text {

  font-style: italic;

  color: #fff;

  margin: 1rem 0;

  line-height: 1.8;

}

.testimonial-author {

  margin-top: 1rem;


}

.testimonial-author strong {

  display: block;

  color: #fff;

}

.testimonial-author span {

  font-size: 0.9rem;

  color: var(--text-light);

}

/* FAQ Section */

.faq-container {

  margin: 2rem 0;

}

.faq-item {

  background: white;

  border: 1px solid var(--border-color);

  border-radius: 4px;

  margin-bottom: 1rem;

}

.faq-question {

  padding: 1.5rem;

  cursor: pointer;

  display: flex;

  justify-content: space-between;

  align-items: center;

  background: #f5f5f5;

  border-radius: 4px 4px 0 0;

  transition: var(--transition);

}

.faq-question:hover {

  background-color: #efefef;

}

.faq-question h3 {

  margin: 0;

  color: var(--primary-color);

  font-size: 1.1rem;

}

.faq-toggle {

  font-size: 1.5rem;

  color: var(--secondary-color);

  font-weight: bold;

}

.faq-answer {

  padding: 1.5rem;

  background: white;

  border-radius: 0 0 4px 4px;

  color: var(--text-light);

  line-height: 1.8;

}

/* Calculator Styles */

.calculator-container {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 3rem;

  margin: 2rem 0;

  background: white;

  padding: 2rem;

  border-radius: 8px;

  border: 1px solid var(--border-color);

}

.calculator-input,

.calculator-output {

  display: flex;

  flex-direction: column;

}

.input-group {

  margin: 1.5rem 0;

}

.input-group label {

  font-weight: 600;

  margin-bottom: 0.5rem;

  display: block;

  color: var(--primary-color);

}

.input-wrapper {

  display: flex;

  flex-direction: column;

  gap: 0.5rem;

}

.input-group input,

.input-group select,

.input-group textarea {

  padding: 0.75rem;

  border: 1px solid var(--border-color);

  border-radius: 4px;

  font-size: 1rem;

  font-family: inherit;

  transition: var(--transition);

}

.input-group input:focus,

.input-group select:focus,

.input-group textarea:focus {

  outline: none;

  border-color: var(--secondary-color);

  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);

}

input[type="range"] {

  width: 100%;

  height: 6px;

  border-radius: 3px;

  background: var(--border-color);

  outline: none;

}

input[type="range"]::-webkit-slider-thumb {

  -webkit-appearance: none;

  appearance: none;

  width: 20px;

  height: 20px;

  border-radius: 50%;

  background: var(--secondary-color);

  cursor: pointer;

  transition: var(--transition);

}

input[type="range"]::-moz-range-thumb {

  width: 20px;

  height: 20px;

  border-radius: 50%;

  background: var(--secondary-color);

  cursor: pointer;

  border: none;

  transition: var(--transition);

}

.input-hint {

  font-size: 0.85rem;

  color: var(--text-light);

  margin-top: 0.3rem;

}

.result-box {

  background: linear-gradient(135deg, var(--primary-color) 0%, #004488 100%);

  color: white;

  padding: 2rem;

  border-radius: 8px;

  margin-bottom: 1.5rem;

  text-align: center;

}

.result-item {

  display: flex;

  flex-direction: column;

}

.result-label {

  font-size: 0.95rem;

  opacity: 0.9;

}

.result-value {

  font-size: 2rem;

  font-weight: 700;

  margin: 0.5rem 0 0 0;

}

.result-divider {

  border-top: 1px solid rgba(255, 255, 255, 0.2);

  margin: 1rem 0;

}

.result-breakdown {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 1rem;

}

.breakdown-item {

  background: white;

  padding: 1rem;

  border-radius: 4px;

  text-align: center;

}

.breakdown-label {

  font-size: 0.85rem;

  color: var(--text-light);

  display: block;

}

.breakdown-value {

  font-size: 1.3rem;

  font-weight: 700;

  color: var(--primary-color);

  display: block;

  margin-top: 0.3rem;

}

/* Tables */

table {

  width: 100%;

  border-collapse: collapse;

  margin: 1.5rem 0;

}

thead {

  background-color: #f5f5f5;

  border-bottom: 2px solid var(--border-color);

}

th,
td {

  padding: 1rem;

  text-align: left;

  border-bottom: 1px solid var(--border-color);

}

th {

  font-weight: 600;

  color: var(--primary-color);

}

tr:hover {

  background-color: #f9f9f9;

}

/* Contact Form */

.contact-container {

  /* display: grid; */

  grid-template-columns: 1fr 1fr;

  gap: 3rem;

  margin: 2rem 0;

}

.contact-info h2 {

  color: #fff;
  font-weight: 700;
  margin-bottom: 1rem;

}

.contact-details {

  display: flex;

  flex-direction: column;

  gap: 2rem;

  margin: 2rem 0;

}

.contact-method {

  display: flex;

  gap: 1.5rem;

}

.method-icon {

  font-size: 2rem;

  min-width: 50px;

}

.method-content h3 {

  color: var(--primary-color);

  margin: 0 0 0.5rem 0;

}

.method-content p {

  margin: 0.3rem 0;

  font-size: 0.95rem;

}

.contact-form {

  display: flex;

  flex-direction: column;

  gap: 1.5rem;

  background: white;

  padding: 2rem;

  border-radius: 8px;

  border: 1px solid var(--border-color);

}

.form-group {

  display: flex;

  flex-direction: column;

}

.form-group label {

  font-weight: 600;

  margin-bottom: 0.5rem;

  color: var(--primary-color);

}

.form-group.checkbox {

  flex-direction: row;

  align-items: flex-start;

  gap: 0.5rem;

}

.form-group input[type="checkbox"] {

  margin-top: 0.25rem;

  cursor: pointer;

}

.form-error {

  color: var(--error-color);

  font-size: 0.85rem;

  margin-top: 0.3rem;

}

.form-success {

  background-color: #d4edda;

  color: #155724;

  padding: 1rem;

  border-radius: 4px;

  border: 1px solid #c3e6cb;

  margin: 1rem 0;

}

/* Blog Grid */

.blog-grid {

  display: grid;

  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));

  gap: 2rem;

  margin: 2rem 0;

}

.blog-card {

  background: white;

  border-radius: 8px;

  overflow: hidden;

  border: 1px solid var(--border-color);

  transition: var(--transition);

}

.blog-card:hover {

  transform: translateY(-5px);

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);

}

.blog-image {

  font-size: 3rem;

  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);

  padding: 2rem;

  text-align: center;

}

.blog-content {

  padding: 1.5rem;

}

.blog-meta {

  display: flex;

  gap: 1rem;

  font-size: 0.85rem;

  color: var(--text-light);

  margin-bottom: 1rem;

}

.blog-date,
.blog-category {

  padding: 0.25rem 0.75rem;

  background: var(--bg-light);

  border-radius: 4px;

}

.blog-card h2 {

  font-size: 1.3rem;

  margin: 0.5rem 0;

}

.blog-card a {

  color: var(--text-dark);

}

.blog-card a:hover {

  color: var(--secondary-color);

}

.blog-card p {

  font-size: 0.95rem;

  color: var(--text-light);

  margin: 1rem 0;

}

.read-more {

  color: var(--secondary-color);

  font-weight: 600;

  font-size: 0.95rem;

}

/* Article Content */

.article-hero {

  background: linear-gradient(135deg, var(--primary-color) 0%, #004488 100%);

  color: white;

  padding: 2rem;

  text-align: center;

}

.article-hero h1 {

  color: white;

  font-size: 2rem;

  margin: 0.5rem 0;

}

.article-meta {

  display: flex;

  justify-content: center;

  gap: 2rem;

  font-size: 0.9rem;

  opacity: 0.9;

  margin: 1rem 0;

  flex-wrap: wrap;

}

.article-content {

  max-width: 800px;

  margin: 2rem auto;

  padding: 0 2rem;

}

.article-section {

  margin: 2rem 0;

}

.article-section ul {

  margin-left: 2rem;

  line-height: 1.8;

}

.article-section li {

  margin: 0.5rem 0;

}

/* Legal Content */

.legal-content {

  max-width: 900px;

  margin: 2rem auto;

  padding: 2rem;

}

.legal-container h2 {

  color: var(--primary-color);

  margin-top: 2rem;
  font-size: 30px;
  font-weight: 700;

}

.legal-container h3 {

  color: var(--primary-color);
  font-weight: 700;

  margin-top: 1.5rem;

}

.legal-container ul {

  margin-left: 2rem;

  margin: 1rem 0 1rem 2rem;

}

.legal-container li {

  margin: 0.5rem 0;

}

/* CTA Section */

.cta-section {

  background: linear-gradient(135deg, var(--primary-color) 0%, #004488 100%);

  color: white;

  padding: 3rem 2rem;

  text-align: center;

  margin: 3rem 0 0 0;

}

.cta-section h2 {

  color: white;

  margin-bottom: 1rem;

}

.cta-section p {

  font-size: 1.1rem;

  margin-bottom: 2rem;

}

/* Footer */

.footer {

  background-color: var(--primary-color);

  color: white;

  padding: 3rem 2rem 1rem;

}

.footer-content {

  max-width: 1200px;

  margin: 0 auto;

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

  gap: 2rem;

  margin-bottom: 2rem;

}

.footer-section h4 {
  color: var(--accent-color);
  margin-bottom: 24px;
  font-size: 18px;
  margin-top: 0px;

}

.footer-section ul {

  list-style: none;
  padding-left: 0px;

}

.footer-section a {

  color: rgba(255, 255, 255, 0.874);

  font-size: 15px;
  font-weight: 700;

  transition: var(--transition);

  display: block;

  margin: 0.5rem 0;

}

.footer-section a:hover {

  color: white;

  padding-left: 0.5rem;

}

.footer-section p {

  font-size: 16px;
  margin: 0.5rem 0;

  color: rgba(255, 255, 255, 0.874);

}

.footer-bottom {

  border-top: 1px solid rgba(255, 255, 255, 0.1);

  /* padding-top: 1rem; */

  text-align: center;

  font-size: 0.9rem;

  color: rgba(255, 255, 255, 0.7);

}

/* Cookie Consent */

.cookie-consent {

  position: fixed;

  bottom: 0;

  left: 0;

  right: 0;

  background-color: white;

  padding: 1.5rem;

  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);

  z-index: 999;

  display: none;

}

.cookie-consent.show {

  display: block;

}

.cookie-content {

  max-width: 1200px;

  margin: 0 auto;

  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 1rem;

  flex-wrap: wrap;

}

.cookie-content p {

  margin: 0;

  color: var(--text-dark);

  max-width: 600px;

}

.cookie-buttons {

  display: flex;

  gap: 1rem;

  align-items: center;

}

.cookie-link {

  color: var(--secondary-color);

  font-size: 0.9rem;

  white-space: nowrap;

}

/* Responsive Design */

@media (max-width: 768px) {

  .nav-container {

    flex-direction: column;

    gap: 1rem;

  }

  .nav-menu {

    flex-direction: column;

    gap: 0.5rem;

  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  /* .hero-buttons {

        flex-direction: column;

    } */

  .calculator-container,

  .contact-container {

    grid-template-columns: 1fr;

  }

  .result-breakdown {

    grid-template-columns: 1fr;

  }

  .contact-method {

    flex-direction: column;

  }

  .blog-grid {

    grid-template-columns: 1fr;

  }

  .article-meta {

    flex-direction: column;

    gap: 0.5rem;

  }

  .footer-content {

    grid-template-columns: 1fr;

    text-align: center;

  }

  .cookie-content {

    flex-direction: column;

  }

  .cookie-buttons {

    width: 100%;

    flex-wrap: wrap;

  }

  table {

    font-size: 0.85rem;

  }

  th,
  td {

    padding: 0.5rem;

  }

}

/* Utility Classes */

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-bold {
  font-weight: 600;
}

.text-italic {
  font-style: italic;
}

.mt-1 {
  margin-top: var(--spacing);
}

.mb-1 {
  margin-bottom: var(--spacing);
}

.mt-2 {
  margin-top: calc(var(--spacing) * 2);
}

.mb-2 {
  margin-bottom: calc(var(--spacing) * 2);
}

.info-box {

  background-color: #e7f3ff;

  border-left: 4px solid var(--secondary-color);

  padding: 1.5rem;

  border-radius: 4px;

  margin: 1.5rem 0;

}

.info-box p {

  margin: 0;

  color: var(--primary-color);

}


/* ================= PREMIUM UI ENHANCEMENTS ================= */

/* Smooth UI feel */
body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Better container spacing */
.content-section {
  padding: 4rem 2rem;
}

.content-section img {
  border-radius: 20px;
}

/* Glass effect utility */
.glass {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Card upgrade */
.card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.navbar {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
}

.nav-link {
  padding: 6px 0;
}

.nav-link:hover {
  color: var(--secondary-color);
}

.hero {
  background: url('../assets/home-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  top: -100px;
  right: -100px;
}

.blog-card {
  border-radius: 12px;
  overflow: hidden;
}

.blog-image {
  font-size: 3.5rem;
  padding: 2.5rem;
}

.blog-card:hover {
  transform: translateY(-8px) scale(1.01);
}

.btn {
  border-radius: 8px;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: linear-gradient(135deg, #0066cc, #004c99);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
}

.btn-secondary {
  border-radius: 8px;
}

.blog-card {
  border-radius: 12px;
  overflow: hidden;
}

.blog-image {
  font-size: 3.5rem;
  padding: 2.5rem;
}

.blog-card:hover {
  transform: translateY(-8px) scale(1.01);
}

.calculator-container {
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* Inputs */
.input-group input {
  border-radius: 6px;
}

/* Result box glow */
.result-box {
  box-shadow: 0 10px 30px rgba(0, 51, 102, 0.3);
}

/* Breakdown cards */
.breakdown-item {
  border-radius: 8px;
  transition: var(--transition);
}

.breakdown-item:hover {
  background: var(--bg-light);
}

.schedule-table {
  border-radius: 10px;
  overflow: hidden;
}

.schedule-table thead {
  background: linear-gradient(135deg, #003366, #0055aa);
  color: white;
}

.schedule-table th {
  color: white;
}

.cta-section {
  border-radius: 0;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
}

.footer {
  background: linear-gradient(135deg, #002244, #003366);
}

.footer-section a:hover {
  color: var(--accent-color);
}

.floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--accent-color);
  color: white;
  padding: 14px 20px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 999;
  cursor: pointer;
  transition: var(--transition);
}

.floating-cta:hover {
  transform: scale(1.05);
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.6s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

.loader {
  width: 40px;
  height: 40px;
  border: 4px solid #eee;
  border-top: 4px solid var(--secondary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* =====================================================
   PREMIUM BANKING ENHANCEMENTS - Add Below Your CSS
   Makes the entire site look Classy, Modern & Trustworthy
   ===================================================== */

/* Global Improvements */
body {
  font-feature-settings: "kern" 1, "liga" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Enhanced Typography */
h1,
h2,
h3,
h4 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 3.1rem;
  line-height: 1.15;
}

h2 {
  font-size: 2.35rem;
  line-height: 1.2;
}

h3 {
  font-size: 1.75rem;
}

p {
  font-size: 1.08rem;
  line-height: 1.75;
}

/* Navbar - More Premium Feel */
.navbar {
  box-shadow: 0 4px 20px rgba(0, 51, 102, 0.08);
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 30px rgba(0, 51, 102, 0.12);
}

.nav-logo {
  font-weight: 800;
}

.logo-text {
  background: linear-gradient(90deg, #003366, #0066cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Hero Section - Banking Level */
.hero,
.page-hero,
.article-hero {
  padding: 5rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.hero-content,
.page-hero>div {
  position: relative;
  z-index: 2;
}

.hero h1,
.page-hero h1 {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.hero p {
  font-size: 20px;
  line-height: 30px;
  max-width: 680px;
  margin: 0 auto 2.5rem;
}

/* Buttons - More Premium */
.btn {
  border-radius: 50px;
  padding: 14px 32px;
  font-weight: 600;
  letter-spacing: 0.4px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: 0.6s;
}

.btn:hover::before {
  left: 300%;
}

.btn-primary {
  background: linear-gradient(135deg, #0066cc, #003366);
  box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 12px 35px rgba(0, 102, 204, 0.4);
  transform: translateY(-4px);
}

.btn-secondary {
  border: 2.5px solid #0066cc;
  font-weight: 600;
}

/* Cards - Banking Style */
.card,
.feature-card,
.signal-item,
.value-card,
.testimonial-card,
.blog-card,
.scenario-card,
.info-card {
  border-radius: 16px;
  padding: 2.2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #e0e7ff;
}

.card:hover,
.feature-card:hover,
.blog-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0, 51, 102, 0.15);
  border-color: #c3d4ff;
}

/* Trust Signals & Features */
.signal-item,
.feature-card {
  text-align: center;
  background: white;
}

.signal-icon {
  /* font-size: 3.8rem; */
  margin-bottom: 1.2rem;
  display: block;
}

/* Calculator - Premium Touch */
.calculator-container {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 51, 102, 0.12);
  padding: 3rem;
  background: white;
  border: 1px solid #e0e7ff;
}

.input-group input[type="number"] {
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 1.15rem;
  border: 2px solid #e0e7ff;
  width: 100%;
}

.input-group input[type="number"]:focus {
  border-color: #0066cc;
  box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.15);
}

.result-box {
  border-radius: 16px;
  padding: 2.5rem 2rem;
  background: linear-gradient(135deg, #003366, #0066cc);
  box-shadow: 0 15px 40px rgba(0, 51, 102, 0.25);
}

.result-value {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -1px;
}

/* Testimonials */
.testimonial-card {
  border-left: 5px solid #ff6b35;
}

/* Blog Cards */
.blog-card {
  border-radius: 16px;
  overflow: hidden;
}

.blog-image {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  background: linear-gradient(135deg, #f0f4ff, #e0e9ff);
}

/* Footer - Luxury Feel */
.footer {
  background: linear-gradient(135deg, #002244, #003366);
  padding: 5rem 0 0rem;
}

.footer-bottom p {
  margin: 0px;
  padding: 30px 0px;
  color: #fff;
  font-size: 15px;
}

.footer-section h4 {
  position: relative;
  padding-bottom: 12px;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: #ff6b35;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #003366, #0066cc);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

/* Legal Pages */
.legal-content {
  background: white;
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  margin: 3rem auto;
  max-width: 980px;
}

/* FAQ Enhancements */
.faq-question {
  border-radius: 12px;
  transition: all 0.3s ease;
}

.faq-item {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeInUp 0.8s ease forwards;
}

/* Mobile Improvements */
@media (max-width: 768px) {

  .hero,
  .page-hero {
    padding: 5.5rem 1rem 4rem;
  }

  h1 {
    font-size: 2.4rem;
  }

  h2 {
    font-size: 2rem;
  }

  .calculator-container {
    padding: 2rem 1.5rem;
    grid-template-columns: 1fr;
  }

  .nav-menu {
    gap: 1rem;
  }
}

/* Final Polish */
.section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, #ff6b35, #0066cc);
  border-radius: 2px;
}

/* Global container (reuse everywhere) */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  /* for mobile spacing */
  width: 100%;
}

/* Features Section */
.features {
  padding: 60px 0;
  background: #f8f6f1;
}

.features h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
  color: var(--primary-color);
  font-weight: 700;
}

/* Grid layout */
.features-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Card styling */
.feature-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-highlight {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0;
  color: #c9581a;
}

/* Responsive */
@media (max-width: 992px) {
  .features-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .features-container {
    grid-template-columns: 1fr;
  }
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 15px;
}

.faq-item.active .faq-answer {
  padding: 15px 15px 30px;
}

.faq-answer p {
  margin: 0px;
}

.faq-question {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-toggle {
  font-size: 24px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

/* Navbar */
.navbar {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 999;
}

/* Logo */
.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* align left on mobile */
}

.nav-logo .logo-text {
  font-size: 22px;
  font-weight: bold;
  color: #003366;
}

.nav-logo img {
  width: 100%;
  max-width: 250px;
}

.nav-logo .logo-tagline {
  font-size: 12px;
  color: #666;
  line-height: 1.2;
}

/* Nav Menu */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 25px;
  margin-bottom: 0px;
}

.nav-menu li a {
  text-decoration: none;
  color: #000;
  font-weight: 700;
  transition: color 0.3s;
}

.nav-menu li a:hover {
  color: #f97316;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 3px;
  background: #333;
  border-radius: 3px;
  transition: 0.4s;
}

/* Hamburger animation */
.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-close {
  display: none;
}

/* Mobile */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    /* covers screen nicely */
    top: 0;
    right: -100%;
    /* hide by default */
    height: 100vh;
    width: 250px;
    background: #fff;
    flex-direction: column;
    gap: 0;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    padding-top: 70px;
    transition: right 0.4s ease;
  }

  .nav-menu li {
    padding: 10px;
    border-bottom: 1px solid #eee;
  }

  /* Show menu */
  .nav-menu.active {
    right: 0;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    /* hide by default */
    flex-direction: column;
    /* gap: 1rem; */
    background: white;
    position: absolute;
    top: 70px;
    /* below navbar */
    right: 0px;
    width: 100%;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1001;
  }

  .nav-menu.show {
    display: flex;
    height: auto;
    /* show when toggled */
  }

  .nav-toggle {
    display: flex;
    /* show hamburger on mobile */
  }

  .nav-container {
    flex-direction: row;
  }

  .nav-close {
    display: block;
  }

  .footer-section h4::after {
    display: none;
  }

  #address {
    padding-inline: 10px;
  }

}

.signal-icon .fas {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  font-size: 22px;
  color: #f97316;
  /* icon color */
  background: #f1f5f9;
  /* icon background */
  border-radius: 12px;
  margin-right: 12px;
  transition: 0.3s;
}

/* Hover effect */
.service-card:hover .fa-icon {
  background: #111;
  color: #fff;
  transform: scale(1.1);
}

/* ===== Process Section Styling ===== */
.process {
  padding: 80px 20px;
  background: #003163;
  font-family: 'Poppins', sans-serif;
}

.process h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 60px;
}

/* Timeline grid */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  align-items: stretch;
}

/* Individual steps */
.process-step {
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Step number circle */
.step-number {
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: var(--accent-color);
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.process-step:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.process-step h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #111;
}

.process-step p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.signal-icon .fas {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  font-size: 22px;
  color: #f97316;
  /* icon color */
  background: #f1f5f9;
  /* icon background */
  border-radius: 12px;
  margin-right: 12px;
  transition: 0.3s;
}

/* Hover effect */
.service-card:hover .fa-icon {
  background: #111;
  color: #fff;
  transform: scale(1.1);
}


/* Timeline grid */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  align-items: stretch;
}

/* Individual steps */
.process-step {
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Step number circle */


.process-step:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.process-step h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #111;
}

.process-step p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* =========================
   GLOBAL LAYOUT
========================= */
section {
  padding: 70px 0;
  line-height: 1.7;
}

h1,
h2,
h3 {
  margin-bottom: 20px;
  color: var(--primary-color);
  font-weight: 700;
}



/* =========================
   CONTENT SECTION (OUR STORY)
========================= */
.content-section {
  background: #fff;
  padding: 60px 20px;
}

.content-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
  position: relative;
  font-weight: 800;
  color: #002244;
}

.content-section h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #002244;
  margin: 10px 0 0;
  border-radius: 2px;
}

.content-section p {
  max-width: 900px;
  margin: 0 auto 20px;
  color: #555;
  font-size: 16px;
}

/* =========================
   MISSION & VISION
========================= */
.mission-vision .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.mission-card,
.vision-card {
  background: #002244;
  padding: 35px;
  border-radius: 15px;
  border: 1px solid #eee;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.mission-card:hover,
.vision-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.mission-card h3,
.vision-card h3 {
  font-size: 28px;
  font-weight: 700;
  margin: 0px !important;
  margin-bottom: 15px !important;
  color: #fff;
}

.mission-card p,
.vision-card p {
  color: #fff;
  font-size: 16px;
}

/* =========================
   CORE VALUES GRID
========================= */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.value-card {
  background: var(--primary-color);
  padding: 30px 25px;
  border-radius: 12px;
  border: 3px solid var(--accent-color);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s, box-shadow 0.3s;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.06);
}

.value-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0px !important;
  margin-bottom: 12px !important;
  color: var(--accent-color);
}

.value-card p {
  color: #fff;
  font-size: 15px;
}

/* =========================
   AWARDS GRID
========================= */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.award-card {
  border: 1px solid #eee;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  background: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.award-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.award-title {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 8px;
  color: #002244;
}

.award-issuer {
  font-size: 14px;
  color: #777;
}


.btn {
  display: inline-block;
  background: linear-gradient(135deg, #003366, #0055a5);
  color: #fff;
  padding: 14px 36px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mission-vision .container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {

  .values-grid,
  .awards-grid {
    grid-template-columns: 1fr;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  .page-hero p {
    font-size: 16px;
  }

  .cta-section h2 {
    font-size: 28px;
  }

  .cta-section p {
    font-size: 16px;
  }
}


/* =========================
   SERVICES SECTION
========================= */


.services {
  padding: 80px 20px;
  background: #f8fafc;
}

.services h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 34px;
  font-weight: 700;
  color: #111;
}

/* GRID */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

/* SERVICE CARD */
.service-card {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 14px;
  border: 1px solid #eee;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: #036;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.service-card:hover::before {
  transform: scaleX(1);
}

/* ICONS */
.service-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}



.service-card:hover h3 i {
  background: var(--accent-color);
  color: #fff;
  transform: scale(1.05);
}

/* TEXT */
.service-card p {
  font-size: 14.5px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* BUTTONS */
.service-card a {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  background: var(--primary-color);
  color: #fff;
  transition: 0.3s;
}

.service-card a:hover {
  background: #111;
  color: #fff;
}

/* =========================
   BENEFITS SECTION
========================= */
.benefits {
  padding: 80px 20px;
  background: #ffffff;
}

.benefits h2 {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #111;
}

/* GRID */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* BENEFIT BOX */
.benefit-box {
  background: #036;
  padding: 30px 20px;
  border-radius: 14px;
  border: 1px solid #eee;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  position: relative;
  transition: all 0.35s ease;
  font-weight: 700;
  overflow: hidden;
}

.benefit-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: #f47f2e;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

/* BENEFIT ICON */
.benefit-box i {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  font-size: 22px;
  background: #f1f5f9;
  color: #f47f2e;
  transition: 0.3s;
}

.benefit-box:hover {
  transform: #f47f2e;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.benefit-box:hover::before {
  transform: scaleX(1);
}

.benefit-box:hover i {
  background: #f47f2e;
  color: #fff;
  transform: scale(1.08);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .benefit-grid {
    grid-template-columns: 1fr;
  }
}

.service-card .fas {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  font-size: 22px;
  color: #f97316;
  /* icon color */
  background: #0134672A;
  /* icon background */
  border-radius: 12px;
  margin-right: 12px;
  transition: 0.3s;
}

/* CTA */
.cta {
  padding: 70px 20px;
  text-align: center;
  background: linear-gradient(135deg, #003366, #0066cc);
  color: #fff;
}

.cta h2 {
  font-size: 30px;
  margin-bottom: 10px;
}

.cta p {
  margin-bottom: 20px;
}

.cta a {
  padding: 12px 25px;
  margin: 5px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
}

/* .btn-primary {
  background: #f97316;
  color: #fff;
} */

.btn-secondary {
  background: #fff;
  color: #000;
}

/* ===== CONTACT PAGE STYLING ===== */

/* Layout */
.contact-section {
  padding: 60px 20px;
  background: #f8fafc;
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  /* display: grid; */
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
}

/* LEFT SIDE */
.contact-info {
  background: var(--primary-color);
  color: #fff;
  padding: 30px;
  border-radius: 12px;
}

.contact-info h2 {
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 15px;
  font-size: 14px;
}

.contact-box {
  margin-bottom: 20px;
}

.contact-box strong {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 15px;
}

/* Font Awesome icon color */
.contact-box strong i {
  color: #f97316;
  font-size: 18px;
}

/* LINK STYLING */
.contact-info a {
  color: #f1f5f9;
  text-decoration: none;
}

.contact-info a:hover {
  color: #f97316;
}

/* RIGHT SIDE FORM */
.contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-form h2 {
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}

.form-group textarea {
  resize: none;
  height: 120px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #f97316;
}

/* BUTTON */
.contact-btn {
  background: #f97316;
  color: #fff;
  border: none;
  padding: 12px 20px;
  width: 100%;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
}

.contact-btn:hover {
  background: #ea580c;
}

/* RESPONSIVE */
@media(max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}

/* Cookie Consent Styles */
#cookie-consent {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #fff;
  color: #000;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  font-family: Arial, sans-serif;
  font-size: 14px;
  max-width: 300px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#cookie-consent p {
  margin: 0;
  line-height: 1.4;
  font-size: 16px;
}

#cookie-consent a {
  color: #003366;
  text-decoration: underline;
}

#cookie-consent button {
  background-color: #003366;
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  align-self: flex-end;
  transition: background 0.3s;
}

.footer-logo {
  width: 100%;
  max-width: 250px;
}

@media(max-width: 768px) {
  .header-btn {
    padding: 8px 10px;
    font-size: 14px;
  }

  .nav-logo img {

    max-width: 200px;
  }

  .hero-content h1 {
    font-size: 40px !important;
  }
}

.hero-form {
  max-width: 1000px;
  margin: 30px auto 0;
  background: var(--primary-color);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.hero-form form {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.form-row {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
}

@media(min-width: 768px) {
  .form-row {
    flex: 1 1 calc(33.333% - 10px);
  }

  .form-row.form-row-button {
    flex: 1 1 100%;
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
  }
}

.form-row label {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 14px;
  color: #fff;
  /* dark blue for better contrast */
  text-align: left;
}

.input-group {
  display: flex;
  flex-wrap: inherit;
  /* align-items: center; */
  border: none;
  border-radius: 10px;
  /* overflow: hidden; */
  background: #fff;
  margin: 0px;
}

.input-group-text {
  background-color: #0b2447;
  color: white;
  padding: 8px 12px;
  font-weight: 600;
  border-right: 1px solid #ccc;
  user-select: none;
}

input[type="number"],
select {
  border-radius: 8px;
  border: 1.5px solid rgba(96, 96, 96, 0.35);
  background: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  height: 48px;
  color: var(--text-dark);
  padding: 10px !important;
}

.safe-search-note {
  font-size: 18px !important;
  margin: 0 auto !important;
}

input[type="number"]:focus,
select:focus {
  border-color: #007bff;
  box-shadow: 0 0 4px #007bff;
}

.btn-submit {
  background-color: #fa713c;
  color: white;
  padding: 12px 28px;
  font-weight: 700;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-submit:hover {
  background-color: #0056b3;
}

.safe-search-note {
  margin-top: 12px;
  font-size: 0.9rem;
  color: #0b2447;
  display: flex;
  align-items: center;
  gap: 6px;
}

.safe-search-note i {
  color: #007bff;
}

/* Responsive tweaks */
@media (max-width: 767px) {
  .form-row {
    flex: 1 1 100%;
  }

  .form-row.form-row-button {
    justify-content: center;
  }
}

.hero-form-title {
  font-size: 28px
}

/* Intro */
.how-intro {
  padding: 60px 0;
  text-align: center;
}

/* Process */
.process-section {
  padding: 60px 0;
  background: #f8f9fb;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px;
}

.process-card {
  background: #036;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.process-card:hover {
  transform: translateY(-5px);
}

.process-card h3 {
  color: #fff;
}

.process-card p {
  color: #fff;
}

.step {
  width: 50px;
  height: 50px;
  background: #ff6b35;
  color: #fff;
  margin: 0 auto 15px;
  line-height: 40px;
  border-radius: 50%;
  font-weight: bold;
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-card h3,
.why-item h3 {
  font-size: 26px;
}

/* After Approval */
.after-approval {
  padding: 60px 0;
  text-align: center;
}

/* Why Section */
.why-process {
  padding: 60px 0;
  background: #f8f9fb;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.why-item {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
}

.why-icon {
  font-size: 32px;
  color: #fff;
  margin-bottom: 15px;
  background: #ff6b35;
  width: 60px;
  height: 60px;
  align-content: center;
  justify-content: center;
  display: grid;
  border-radius: 10px;
}

/* Intro */
.doc-intro {
  padding: 60px 0;
  text-align: center;
}

/* Grid */
.doc-section {
  padding: 60px 0;
  background: #f8f9fb;
}

.doc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* Card */
.doc-card {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.doc-card:hover {
  transform: translateY(-5px);
}

.doc-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.doc-card h3 i {
  color: #0d1b2a;
  margin-right: 8px;
}

.doc-card ul {
  padding-left: 18px;
}

.doc-card ul li {
  margin-bottom: 6px;
  font-size: 14px;
}

/* Note */
.doc-note {
  background: #f8f9fb;
  padding: 20px 0;
  text-align: center;
}


.card-image img {
  width: 100%;
  border-radius: 10px;
}

.mission-vision .container {
  display: flex;
  gap: 30px;
}

.mission-card,
.vision-card {
  flex: 1;
  background: #052b4f;
  /* your dark blue */
  padding: 30px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* FORCE equal image size */
.card-image {
  width: 100%;
  height: 180px;
  /* FIXED height */
  overflow: hidden;
  border-radius: 10px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* CRITICAL */
}

/* Content spacing */
.card-content {
  margin-top: 20px;
}

/* Make cards equal height */
.mission-card,
.vision-card {
  min-height: 520px;
  /* adjust based on your design */
}

/* Mobile fix */
@media (max-width: 768px) {
  .mission-vision .container {
    flex-direction: column;
  }

  .mission-card,
  .vision-card {
    min-height: auto;
  }
}


.doc-grid-modern {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 25px;
}

.doc-modern {
  background: #f8f9fb;
  padding: 80px 20px;
}

.doc-container {
  max-width: 1200px;
  margin: auto;
}

.doc-header {
  text-align: center;
  margin-bottom: 50px;
}

.doc-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
  margin-top: 0;
}

.doc-header p {
  color: #6b7280;
  font-size: 15px;
}

.doc-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.doc-item {
  background: #ffffff;
  border-radius: 14px;
  padding: 25px;
  transition: all 0.3s ease;
  border: 1px solid #eee;
  position: relative;
}

/* subtle brand highlight strip */
.doc-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: #fa713c;
  border-radius: 14px 14px 0 0;
  opacity: 0.85;
}

.doc-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* ICON - use brand color smartly */
.doc-icon {
  width: 48px;
  height: 48px;
  background: rgba(250, 113, 60, 0.1);
  color: #fa713c;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 15px;
  transition: 0.3s ease;
}

.doc-item:hover .doc-icon {
  background: #fa713c;
  color: #fff;
}

.doc-item h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: #111;
}

.doc-item ul {
  padding-left: 18px;
}

.doc-item ul li {
  font-size: 16px;
  color: #555;
  margin-bottom: 6px;
}

/* OPTIONAL: add subtle bullet styling */
.doc-item ul li::marker {
  color: #fa713c;
}

/* Tablet */
@media (max-width: 992px) {
  .doc-grid-modern {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .doc-grid-modern {
    grid-template-columns: 1fr;
  }
}

.imp_indo_div {
  background: #ff000026;
  padding: 54px 40px;
  border-radius: 8px;
  max-width: 830px;
  margin: 0 auto;
  width: 100%;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.team-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  transition: 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.team-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

.team-card h3 {
  margin-bottom: 5px;
  font-size: 20px;
}

.team-card .role {
color: #ff6b35;
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: 600;
}

.team-card p {
  font-size: 14px;
  color: #555;
}